home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20021006-20030409 / 000299_fdc@columbia.edu_Thu Feb 13 15:27:43 EST 2003.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  56 lines

  1. Article: 14095 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: C-Kermit script F10 send
  6. Date: 13 Feb 2003 15:27:20 -0500
  7. Organization: Columbia University
  8. Lines: 39
  9. Message-ID: <b2gv38$lp8$1@watsol.cc.columbia.edu>
  10. References: <MmT2a.1120$UF6.62973@newssrv26.news.prodigy.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1045168042 28250 128.59.39.139 (13 Feb 2003 20:27:22 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 13 Feb 2003 20:27:22 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14095
  16.  
  17. In article <MmT2a.1120$UF6.62973@newssrv26.news.prodigy.com>,
  18. Schmackd0wn  <userdog@rennert.net> wrote:
  19. : I've done what I think is a pretty exhaustive search over google groups 
  20. : but can't find anything to help me with the following problem. I'm 
  21. : throwing myself at the mercy of this group with a post.
  22. I think you'll find this is a low-key friendly group.
  23.  
  24. : The situation: I have C-Kermit set up on a RH7.3 box to dial into a 
  25. : provider to initiate a download, but to instigate the download I need to 
  26. : send an F10.
  27. :
  28. There's no such character as F10.  To instigate the download you have to
  29. send a sequence of characters (all sorts of different character sequences
  30. can be associated with function keys depending on the application and on
  31. which terminal is being emulated or assumed).
  32.  
  33. : I know that Kermit isn't a terminal emulator and that I'd 
  34. : have to do some stuff with my shell, but I'm not sure that would help in 
  35. : the long run- I want to put this all in a script to automate the 
  36. : process, which is the same day in and day out. Minicom can send a macro 
  37. : of ^[[010q to force the download screen remotely, but it doesn't launch 
  38. : kermit properly to start the download, and I'd rather use Kermit for all 
  39. : of it. So, is there any way to send F10 via a C-Kermit script? The 
  40. : script I've written works great up to that point.
  41. Have Kermit send the same character sequence.  The command is OUTPUT.
  42. The syntax is in this case is:
  43.  
  44.   OUPUT \27[010q
  45.  
  46. For an introduction to Kermit script writing, see:
  47.  
  48.   http://www.columbia.edu/kermit/ckscripts.html
  49.  
  50. - Frank
  51.  
  52. P.S. You might find the SEARCH link at the Kermit website more helpful
  53. than Google searches when you're trying to found out something about Kermit.
  54.